mirror of
https://github.com/DevExpress/netcore-winforms-demos.git
synced 2026-01-06 00:35:33 +00:00
Add Outlook Inspired and Stock Market demos
This commit is contained in:
13
OutlookInspiredApp/DevExpress.DevAV/Probation.cs
Normal file
13
OutlookInspiredApp/DevExpress.DevAV/Probation.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user