rafaelturon/blockchain-investments

View on GitHub
src/Blockchain.Investments.Core/Domain/Entities/Lot.cs

Summary

Maintainability
A
0 mins
Test Coverage
using Blockchain.Investments.Core.Infrastructure.Domain;

namespace Blockchain.Investments.Core.Domain
{
    public class Lot : BaseEntity
    {
        public Account Account {get; set;}
        public bool IsClosed {get; set;}
    }
}