mirror of
https://github.com/DevExpress/netcore-winforms-demos.git
synced 2025-12-24 10:30:57 +00:00
18 lines
608 B
C#
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; }
|
|
}
|
|
}
|