Files
netcore-winforms-demos/OutlookInspiredApp/DevExpress.DevAV/DevExpress.DevAV.Data/CustomerComminication.cs
Alexander Mikhailov a2371dfb0b 19.1.3-ctp
2019-05-16 10:20:43 +03:00

18 lines
608 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Runtime.Serialization;
namespace DevExpress.DevAV {
public class CustomerCommunication : DatabaseObject {
public virtual Employee Employee { get; set; }
public long? EmployeeId { get; set; }
public virtual CustomerEmployee CustomerEmployee { get; set; }
public long? CustomerEmployeeId { get; set; }
public DateTime Date { get; set; }
public string Type { get; set; }
public string Purpose { get; set; }
}
}