Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
1234567891011121314151617 |
- using System;
-
- namespace TestUtils.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; }
- }
- }
|