mirror of
https://github.com/D4M13N-D3V/comissions-app-core-api.git
synced 2025-07-29 18:09:37 +00:00
9 lines
244 B
C#
9 lines
244 B
C#
namespace comissions.app.api.Entities;
|
|
|
|
public class RequestAsset
|
|
{
|
|
public int Id { get; set; }
|
|
public int RequestId { get; set; }
|
|
public string FileReference { get; set; }
|
|
public virtual Request Request { get; set; } = null!;
|
|
} |