using System; using MongoDB.Bson; namespace Sony.ChartBot.Entities.Storage { public class SubscriptionRecord { public ObjectId Id { get; set; } public string TrackReference { get; set; } public string UserId { get; set; } public DateTime? LatestSendoutDay { get; set; } public int SendoutHourUtc { get; set; } } }