Files
netcore-winforms-demos/OutlookInspiredApp/DevExpress.DevAV/Probation.cs
2018-12-21 10:31:41 +03:00

13 lines
367 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 Probation : DatabaseObject {
public string Reason { get; set; }
public virtual ICollection<Employee> Employees { get; set; }
}
}