mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			487 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			487 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.Entities.Interfaces
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// An interface abstracting an entity that has a concurrency token.
 | 
						|
    /// </summary>
 | 
						|
    public interface IHasConcurrencyToken
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the version of this row. Acts as a concurrency token.
 | 
						|
        /// </summary>
 | 
						|
        uint RowVersion { get; }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Called when saving changes to this entity.
 | 
						|
        /// </summary>
 | 
						|
        void OnSavingChanges();
 | 
						|
 | 
						|
    }
 | 
						|
} |