Files
Alexander Mikhailov c9fc96eaac #Outlook - 19.1
2019-05-06 09:45:48 +03:00

13 lines
355 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; }
}
}