mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
15 lines
345 B
C#
15 lines
345 B
C#
using LiteDB;
|
|
|
|
namespace CarCareTracker.Models
|
|
{
|
|
public class RecordExtraField
|
|
{
|
|
/// <summary>
|
|
/// Corresponds to int value of ImportMode enum
|
|
/// </summary>
|
|
[BsonId(false)]
|
|
public int Id { get; set; }
|
|
public List<ExtraField> ExtraFields { get; set; } = new List<ExtraField>();
|
|
}
|
|
}
|