SocialPub/PrivaPub/Models/User/RootUserNote.cs

15 lines
347 B
C#
Raw Normal View History

2023-02-18 08:52:17 +01:00
using MongoDB.Entities;
2023-02-19 00:43:43 +01:00
namespace PrivaPub.Models.User
2023-02-18 08:52:17 +01:00
{
public class RootUserNote : Entity
{
public string RootUserId { get; set; }
public string AvatarUserId { get; set; }
public string Note { get; set; }
2023-02-19 00:43:43 +01:00
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
2023-02-18 08:52:17 +01:00
}
}