mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 15:40:07 +01:00
12 lines
252 B
C#
12 lines
252 B
C#
namespace QuotifyBE.Entities
|
|
{
|
|
public class QuoteCategory
|
|
{
|
|
public int QuoteId { get; set; }
|
|
public int CategoryId { get; set; }
|
|
|
|
public Quote? Quote { get; set; }
|
|
public Category? Category { get; set; }
|
|
}
|
|
}
|