mirror of
https://github.com/DevExpress/netcore-winforms-demos.git
synced 2025-12-22 17:39:24 +00:00
13 lines
367 B
C#
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; }
|
|
}
|
|
}
|
|
|