blob: d95354145ec9f2e5846afe2ce1818a515d3e61ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System;
using System.Collections.Generic;
namespace Jellyfin.Server.Migrations
{
/// <summary>
/// Configuration part that holds all migrations that were applied.
/// </summary>
public class MigrationOptions
{
/// <summary>
/// Initializes a new instance of the <see cref="MigrationOptions"/> class.
/// </summary>
public MigrationOptions()
{
Applied = new List<Guid>();
}
/// <summary>
/// Gets the list of applied migration routine names.
/// </summary>
public List<Guid> Applied { get; }
}
}
|