mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 17:28:43 +00:00
13 lines
386 B
C#
13 lines
386 B
C#
using System;
|
|
namespace PodNoms.Api.Models.Annotations {
|
|
[System.AttributeUsage(System.AttributeTargets.Property)]
|
|
public class SlugFieldAttribute : Attribute {
|
|
private readonly string _sourceField;
|
|
|
|
public string SourceField => _sourceField;
|
|
public SlugFieldAttribute(string sourceField) {
|
|
this._sourceField = sourceField;
|
|
}
|
|
|
|
}
|
|
} |