11 lines
273 B
C#
11 lines
273 B
C#
using Microsoft.CodeAnalysis;
|
|
|
|
namespace SerializationGenerator
|
|
{
|
|
public record SerializableFieldSaveFlagMethods
|
|
{
|
|
public IMethodSymbol? DetermineFieldShouldSerialize { get; init; }
|
|
|
|
public IMethodSymbol? GetFieldDefaultValue { get; init; }
|
|
}
|
|
}
|