sozsoft-platform/api/src/Sozsoft.Platform.Domain/Entities/Host/Definitions/SkillLevel.cs

23 lines
495 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using Volo.Abp.Domain.Entities.Auditing;
using Volo.Abp.MultiTenancy;
namespace Sozsoft.Platform.Entities;
public class SkillLevel : FullAuditedEntity<string>
{
public Guid? TenantId { get; set; }
public string SkillTypeId { get; set; }
public SkillType SkillType { get; set; }
public string Name { get; set; }
public int Progress { get; set; }
public bool IsDefault { get; set; }
public SkillLevel(string id)
{
Id = id;
}
}