22 lines
551 B
C#
22 lines
551 B
C#
|
|
using System;
|
||
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
||
|
|
using Volo.Abp.MultiTenancy;
|
||
|
|
|
||
|
|
namespace Kurs.Platform.Entities;
|
||
|
|
|
||
|
|
public class LessonPeriod : FullAuditedEntity<Guid>, IMultiTenant
|
||
|
|
{
|
||
|
|
public Guid? TenantId { get; set; }
|
||
|
|
public Guid? BranchId { get; set; }
|
||
|
|
|
||
|
|
public string Name { get; set; }
|
||
|
|
public string Day { get; set; }
|
||
|
|
|
||
|
|
public string Lesson1 { get; set; }
|
||
|
|
public string Lesson2 { get; set; }
|
||
|
|
public string Lesson3 { get; set; }
|
||
|
|
public string Lesson4 { get; set; }
|
||
|
|
|
||
|
|
Guid? IMultiTenant.TenantId => TenantId;
|
||
|
|
}
|