2025-08-20 07:31:56 +00:00
|
|
|
using System;
|
|
|
|
|
using Volo.Abp.Domain.Entities.Auditing;
|
2025-08-20 12:04:48 +00:00
|
|
|
using Volo.Abp.MultiTenancy;
|
2025-08-20 07:31:56 +00:00
|
|
|
|
|
|
|
|
namespace Kurs.Platform.Entities;
|
|
|
|
|
|
2025-08-20 15:00:58 +00:00
|
|
|
public class Service : FullAuditedEntity<Guid>, IMultiTenant
|
2025-08-20 07:31:56 +00:00
|
|
|
{
|
2025-08-20 12:04:48 +00:00
|
|
|
public Guid? TenantId { get; set; }
|
2025-10-07 11:19:12 +00:00
|
|
|
|
2025-08-20 07:31:56 +00:00
|
|
|
public string? Icon { get; set; }
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public string? Description { get; set; }
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
|
2025-08-20 10:06:40 +00:00
|
|
|
// JSON olarak saklanacak
|
|
|
|
|
public string[] Features { get; set; } = [];
|
2025-08-20 07:31:56 +00:00
|
|
|
}
|
|
|
|
|
|