erp-platform/api/src/Kurs.Platform.Domain/Entities/Branch/Level.cs
2025-10-10 10:11:32 +03:00

25 lines
888 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
namespace Kurs.Platform.Entities;
public class Level : FullAuditedEntity<Guid>, IMultiTenant
{
public Guid? TenantId { get; set; }
public Guid? BranchId { get; set; }
public Guid ClassTypeId { get; set; } // SinifTipiID (FK)
public string LevelType { get; set; } // SeviyeTipi
public string Name { get; set; } // SeviyeKodu
public int Order { get; set; } // Sıra Numarası
public int LessonCount { get; set; } // DersSayisi
public string Status { get; set; } // Durum
public int? LessonDuration { get; set; } // DersSuresi
public decimal? MonthlyPaymentRate { get; set; } // AylikOdemeYuzdesi
// Navigation
public ClassType ClassType { get; set; }
Guid? IMultiTenant.TenantId => TenantId;
}