sozsoft-platform/api/src/Sozsoft.Platform.Domain/Entities/Host/Definitions/Currency.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

19 lines
488 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;
namespace Sozsoft.Platform.Entities;
public class Currency : FullAuditedEntity<string>
{
public string Symbol { get; set; } // ₺, $, etc.
public string Name { get; set; } // Turkish lira, US dollar, ...
public decimal Rate { get; set; } // TRY başına değer
public bool IsActive { get; set; }
public DateTime? LastUpdated { get; set; }
public Currency(string id)
{
Id = id;
}
}