mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 22:10:05 +01:00
9 lines
148 B
C#
9 lines
148 B
C#
namespace QuotifyBE.Entities
|
|
{
|
|
public class Image
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Url { get; set; }
|
|
}
|
|
}
|