mirror of
https://github.com/DevExpress/netcore-winforms-demos.git
synced 2026-01-05 16:26:09 +00:00
19.1.3-ctp
This commit is contained in:
committed by
GitHub
parent
2e45b5d38f
commit
a2371dfb0b
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Linq;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace DevExpress.DevAV {
|
||||
public enum EvaluationRating {
|
||||
Unset,
|
||||
Good,
|
||||
Average,
|
||||
Poor
|
||||
}
|
||||
public partial class Evaluation : DatabaseObject {
|
||||
public virtual Employee CreatedBy { get; set; }
|
||||
public long? CreatedById { get; set; }
|
||||
public DateTime CreatedOn { get; set; }
|
||||
public virtual Employee Employee { get; set; }
|
||||
public long? EmployeeId { get; set; }
|
||||
public string Subject { get; set; }
|
||||
public string Details { get; set; }
|
||||
public virtual EvaluationRating Rating { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user