source: src/FinkiChattery/FinkiChattery.Common/Dtos/CreatedEntity.cs@ e6a6d9a

dev
Last change on this file since e6a6d9a was e6a6d9a, checked in by Стојков Марко <mst@…>, 3 years ago

Initialized FinkiChattery project

  • Property mode set to 100644
File size: 590 bytes
Line 
1using System;
2
3namespace FinkiChattery.Common.Dtos
4{
5 public class CreatedEntity
6 {
7 public CreatedEntity(long id, Guid uid)
8 {
9 Id = id;
10 Uid = uid;
11 }
12
13 public CreatedEntity(long id, Guid uid, Guid verificationCode)
14 {
15 Id = id;
16 Uid = uid;
17 VerificationCode = verificationCode;
18 }
19
20 public CreatedEntity(long id)
21 {
22 Id = id;
23 }
24
25 public long Id { get; }
26 public Guid Uid { get; }
27 public Guid VerificationCode { get; }
28 }
29}
Note: See TracBrowser for help on using the repository browser.