using System; using System.Collections.Generic; namespace Firebase { public class NoteModel { public string id; public string message; public string createdAt; // public List Replies { get; set; } public NoteModel() { } public NoteModel(string id, string message, string createdAt) { this.id = id; this.message = message; this.createdAt = createdAt; } } // public class NoteReplyModel // { // public Guid ID { get; set; } // public string Message { get; set; } // public Guid NoteID { get; set; } // } }