10 lines
229 B
C#
10 lines
229 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace FinlyticFundamentals.Entities;
|
|
|
|
[Owned]
|
|
public class TickerEntity
|
|
{
|
|
public string Ticker { get; set; } = string.Empty;
|
|
public string Exchange { get; set; } = string.Empty;
|
|
} |