mirror of
https://github.com/MvDevsUnion/WPetition.git
synced 2026-01-14 17:39:28 +00:00
10 lines
207 B
C#
10 lines
207 B
C#
using Ashi.MongoInterface.Helper;
|
|
|
|
namespace Submission.Api.Models;
|
|
|
|
[BsonCollection("author")]
|
|
public class Author : Document
|
|
{
|
|
public string Name { get; set; }
|
|
public string NID { get; set; }
|
|
} |