2025-03-15 16:54:20 +03:30

8 lines
138 B
C#

namespace BuildingBlocks.Core.Model;
// For handling optimistic concurrency
public interface IVersion
{
long Version { get; set; }
}