Fix build issue

Property had two two get keywords declared
This commit is contained in:
kdeng00
2023-09-17 21:09:03 -04:00
parent 3d45646a96
commit 00c20c806a
+1 -1
View File
@@ -9,6 +9,6 @@ public class Text
public string Subject { get; set; }
public string Message { get; set; }
public int UserID { get; set; }
public DateTime DateCreated { get; get; }
public DateTime DateCreated { get; set; }
#endregion
}