9 lines
253 B
C#
Raw Normal View History

2024-06-15 03:10:24 -04:00
namespace comissions.app.api.Entities;
2024-02-19 04:50:48 -05:00
public class ArtistPortfolioPiece
{
public int Id { get; set; }
public int ArtistId { get; set; }
public string FileReference { get; set; }
public virtual UserArtist Artist { get; set; } = null!;
}