Files
WPetition/Submission.Api/Models/PetitionDetail.cs
fISHIE 3e286f0c80 idk
2025-12-10 11:10:09 +05:00

20 lines
512 B
C#

using System.Runtime.InteropServices;
using Ashi.MongoInterface.Helper;
namespace Submission.Api.Models;
[BsonCollection("petitionDetail")]
public class PetitionDetail : Document
{
public DateOnly StartDate { get; set; }
public string NameDhiv { get; set; }
public string NameEng { get; set; }
public Guid AuthorId { get; set; }
public string PetitionBodyDhiv { get; set; }
public string PetitionBodyEng { get; set; }
public int SignatureCount { get; set; }
}