using System.ComponentModel.DataAnnotations; namespace Infrastructure.Domain { public interface IVersionEntity { public string RowVersion { get; set; } } }