mirror of
https://github.com/D4M13N-D3V/comissions-app-core-api.git
synced 2025-03-14 10:04:55 +00:00
9 lines
258 B
C#
9 lines
258 B
C#
namespace comissions.app.database.Entities;
|
|
|
|
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!;
|
|
} |