using System; namespace Test.Utils.Dbo.PkGuid { public class PkGuidDbo { public string Id { get; set; } public string SomeText { get; set; } public int? SomeInt { get; set; } public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } } }