14 lines
290 B
C#
14 lines
290 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Venues.Entities
|
|
{
|
|
public partial class Venue
|
|
{
|
|
public int? Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Link { get; set; }
|
|
public string? Active { get; set; }
|
|
}
|
|
}
|