11using System ;
22using System . Collections . Generic ;
3- using Tracker . Core . Definitions ;
3+ using System . ComponentModel . DataAnnotations ;
4+ using System . ComponentModel . DataAnnotations . Schema ;
45
56namespace Tracker . Core . Data . Entities ;
67
78/// <summary>
8- /// Entity class representing data for table ' Audit' .
9+ /// Represents the <c>Audit</c> entity mapped to the <c>dbo. Audit</c> table .
910/// </summary>
10- [ System . ComponentModel . DataAnnotations . Schema . Table ( "Audit" , Schema = "dbo" ) ]
11- public partial class Audit : IHaveIdentifier
11+ [ Table ( "Audit" , Schema = "dbo" ) ]
12+ public partial class Audit
1213{
1314 /// <summary>
1415 /// Initializes a new instance of the <see cref="Audit"/> class.
@@ -21,112 +22,112 @@ public Audit()
2122
2223 #region Generated Properties
2324 /// <summary>
24- /// Gets or sets the property value representing column <c>Id</c>.
25+ /// Gets or sets the <c>Id</c> value mapped to the <c>Id</c> column .
2526 /// </summary>
2627 /// <value>
27- /// The property value representing column <c>Id</c>.
28+ /// The <c>Id</c> entity value .
2829 /// </value>
2930 [ Key ]
3031 [ Column ( "Id" , TypeName = "uniqueidentifier" ) ]
3132 public Guid Id { get ; set ; }
3233
3334 /// <summary>
34- /// Gets or sets the property value representing column <c>Date</c>.
35+ /// Gets or sets the <c>Date</c> value mapped to the <c>Date</c> column .
3536 /// </summary>
3637 /// <value>
37- /// The property value representing column <c>Date</c>.
38+ /// The <c>Date</c> entity value .
3839 /// </value>
3940 [ Column ( "Date" , TypeName = "datetime" ) ]
4041 public DateTime Date { get ; set ; }
4142
4243 /// <summary>
43- /// Gets or sets the property value representing column <c>UserId</c>.
44+ /// Gets or sets the <c>UserId</c> value mapped to the <c>UserId</c> column .
4445 /// </summary>
4546 /// <value>
46- /// The property value representing column <c>UserId</c>.
47+ /// The <c>UserId</c> entity value .
4748 /// </value>
4849 [ Column ( "UserId" , TypeName = "uniqueidentifier" ) ]
4950 public Guid ? UserId { get ; set ; }
5051
5152 /// <summary>
52- /// Gets or sets the property value representing column <c>TaskId</c>.
53+ /// Gets or sets the <c>TaskId</c> value mapped to the <c>TaskId</c> column .
5354 /// </summary>
5455 /// <value>
55- /// The property value representing column <c>TaskId</c>.
56+ /// The <c>TaskId</c> entity value .
5657 /// </value>
5758 [ Column ( "TaskId" , TypeName = "uniqueidentifier" ) ]
5859 public Guid ? TaskId { get ; set ; }
5960
6061 /// <summary>
61- /// Gets or sets the property value representing column <c>Content</c>.
62+ /// Gets or sets the <c>Content</c> value mapped to the <c>Content</c> column .
6263 /// </summary>
6364 /// <value>
64- /// The property value representing column <c>Content</c>.
65+ /// The <c>Content</c> entity value .
6566 /// </value>
6667 [ Column ( "Content" , TypeName = "nvarchar(max)" ) ]
6768 public string Content { get ; set ; } = null ! ;
6869
6970 /// <summary>
70- /// Gets or sets the property value representing column <c>Username</c>.
71+ /// Gets or sets the <c>Username</c> value mapped to the <c>Username</c> column .
7172 /// </summary>
7273 /// <value>
73- /// The property value representing column <c>Username</c>.
74+ /// The <c>Username</c> entity value .
7475 /// </value>
7576 [ Column ( "Username" , TypeName = "nvarchar(50)" ) ]
7677 public string Username { get ; set ; } = null ! ;
7778
7879 /// <summary>
79- /// Gets or sets the property value representing column <c>Created</c>.
80+ /// Gets or sets the <c>Created</c> value mapped to the <c>Created</c> column .
8081 /// </summary>
8182 /// <value>
82- /// The property value representing column <c>Created</c>.
83+ /// The <c>Created</c> entity value .
8384 /// </value>
8485 [ Column ( "Created" , TypeName = "datetimeoffset" ) ]
8586 public DateTimeOffset Created { get ; set ; }
8687
8788 /// <summary>
88- /// Gets or sets the property value representing column <c>CreatedBy</c>.
89+ /// Gets or sets the <c>CreatedBy</c> value mapped to the <c>CreatedBy</c> column .
8990 /// </summary>
9091 /// <value>
91- /// The property value representing column <c>CreatedBy</c>.
92+ /// The <c>CreatedBy</c> entity value .
9293 /// </value>
9394 [ Column ( "CreatedBy" , TypeName = "nvarchar(100)" ) ]
9495 public string ? CreatedBy { get ; set ; }
9596
9697 /// <summary>
97- /// Gets or sets the property value representing column <c>Updated</c>.
98+ /// Gets or sets the <c>Updated</c> value mapped to the <c>Updated</c> column .
9899 /// </summary>
99100 /// <value>
100- /// The property value representing column <c>Updated</c>.
101+ /// The <c>Updated</c> entity value .
101102 /// </value>
102103 [ Column ( "Updated" , TypeName = "datetimeoffset" ) ]
103104 public DateTimeOffset Updated { get ; set ; }
104105
105106 /// <summary>
106- /// Gets or sets the property value representing column <c>UpdatedBy</c>.
107+ /// Gets or sets the <c>UpdatedBy</c> value mapped to the <c>UpdatedBy</c> column .
107108 /// </summary>
108109 /// <value>
109- /// The property value representing column <c>UpdatedBy</c>.
110+ /// The <c>UpdatedBy</c> entity value .
110111 /// </value>
111112 [ Column ( "UpdatedBy" , TypeName = "nvarchar(100)" ) ]
112113 public string ? UpdatedBy { get ; set ; }
113114
114115 /// <summary>
115- /// Gets or sets the property value representing column <c>RowVersion</c>.
116+ /// Gets or sets the <c>RowVersion</c> value mapped to the <c>RowVersion</c> column .
116117 /// </summary>
117118 /// <value>
118- /// The property value representing column <c>RowVersion</c>.
119+ /// The <c>RowVersion</c> entity value .
119120 /// </value>
120121 [ ConcurrencyCheck ]
121122 [ Column ( "RowVersion" , TypeName = "rowversion" ) ]
122123 [ DatabaseGenerated ( DatabaseGeneratedOption . Computed ) ]
123124 public byte [ ] RowVersion { get ; set ; } = null ! ;
124125
125126 /// <summary>
126- /// Gets or sets the property value representing column <c>Attributes</c>.
127+ /// Gets or sets the <c>Attributes</c> value mapped to the <c>Attributes</c> column .
127128 /// </summary>
128129 /// <value>
129- /// The property value representing column <c>Attributes</c>.
130+ /// The <c>Attributes</c> entity value .
130131 /// </value>
131132 [ Column ( "Attributes" , TypeName = "StringList" ) ]
132133 public string ? Attributes { get ; set ; }
0 commit comments