Follow-up to previous commit

main
Inga 🏳‍🌈 15 years ago
parent bf94b8cd22
commit 4373f921cd
  1. 9
      Core/DB/conditions/EmptyCondition.cs
  2. 9
      Core/DB/conditions/NotEmptyCondition.cs

@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FLocal.Core.DB.conditions {
public class EmptyCondition : AbstractCondition {
}
}

@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FLocal.Core.DB.conditions {
public abstract class NotEmptyCondition : AbstractCondition {
}
}
Loading…
Cancel
Save