mirror of
https://github.com/MvDevsUnion/WPetition.git
synced 2026-01-13 17:09:28 +00:00
14 lines
348 B
C#
14 lines
348 B
C#
using Ashi.MongoInterface.Helper;
|
|
|
|
namespace Submission.Api.Models;
|
|
|
|
[BsonCollection("signatures")]
|
|
public class Signature : Document
|
|
{
|
|
public string Name { get; set; }
|
|
public string IdCard { get; set; }
|
|
public string Signature_SVG { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
|
|
public Guid PetitionId { get; set; }
|
|
} |