34 lines
712 B
C#
34 lines
712 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Firebase
|
|
{
|
|
public class NoteModel
|
|
{
|
|
public string id;
|
|
public string message;
|
|
|
|
public string createdAt;
|
|
// public List<NoteReplyModel> 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; }
|
|
// }
|
|
} |