-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEvent.cs
33 lines (29 loc) · 808 Bytes
/
Event.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NuoTest
{
class Event : Entity
{
internal long CustomerId { get; set; }
internal long OwnerId { get; set; }
internal String EventGuid { get; set; }
internal String Name { get; set; }
internal String Description { get; set; }
internal DateTime DateCreated { get; set; }
internal DateTime LastUpdated { get; set; }
internal String Region { get; set; }
public Event(long id, long customerId, String eventGuid) : base(id)
{
this.CustomerId = customerId;
this.EventGuid = eventGuid;
}
public Event()
: base()
{}
}
}